home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 5 / Gekikoh Dennoh Club Vol. 5 (Japan).7z / Gekikoh Dennoh Club Vol. 5 (Japan) (Track 01).bin / internet / xip / iijppp.lzh / src / lcpproto.h < prev    next >
C/C++ Source or Header  |  1994-09-17  |  860b  |  31 lines

  1. #ifndef _LCPPROTO_H_
  2. #define _LCPPROTO_H_
  3.  
  4. /*
  5.  *  Definition of protocol numbers
  6.  */
  7. #define    PROTO_IP    0x0021        /* IP */
  8. #define    PROTO_VJUNCOMP    0x002f        /* VJ Uncompressed */
  9. #define    PROTO_VJCOMP    0x002d        /* VJ Compressed */
  10. #define    PROTO_ICOMPD    0x00fb        /* Individual link compressed */
  11. #define    PROTO_COMPD    0x00fd        /* Compressed datagram */
  12.  
  13. #define    PROTO_IPCP    0x8021
  14. #define    PROTO_ICCP    0x80fb
  15. #define    PROTO_CCP    0x80fd
  16.  
  17. #define    PROTO_LCP    0xc021
  18. #define    PROTO_PAP    0xc023
  19. #define    PROTO_LQR    0xc025
  20. #define    PROTO_CHAP    0xc223
  21.  
  22. extern void LcpInput(struct mbuf *bp);
  23. extern void PapInput(struct mbuf *bp);
  24. extern void LqpInput(struct mbuf *bp);
  25. extern void ChapInput(struct mbuf *bp);
  26. extern void IpInput(struct mbuf *bp);
  27. extern struct mbuf *VjCompInput(struct mbuf *bp, int proto);
  28. extern void IpcpInput(struct mbuf *bp);
  29. extern void LqrInput(struct mbuf *bp);
  30. #endif
  31.